GET
/
api
/
{projectId}
/
raw-data
/
imported-from
List data with "imported from" metadata key
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/imported-from \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "data": [
    {
      "id": 123,
      "category": "<string>",
      "importedFrom": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Query Parameters

limit
integer

Maximum number of results

offset
integer

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

Response

200 - application/json

OK

The response is of type object.